home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / hunt103.zip / HUNT.ZIP / HLOCS / HLOCATE.LOC < prev    next >
Text File  |  1995-08-12  |  4KB  |  69 lines

  1. // BASIC INN LAYOUT  (HLOCATE.ORG)
  2. // NOTES ON FORMAT:
  3. //   No line should be longer than 120 characters in length anywhere in here
  4. //   Standard ANSI color and graphics are allowed in location descriptions
  5. //   NAME <...> at the top of this file is currently not being used
  6. //   DESCRIPTION_NAME is the name of the area the player is shown
  7. //    - After DESCRIPTION_NAME, leave a blank space
  8. //    - Everything after the blank space to the end of the line is yours
  9. //   Start and end each location with BEGIN/END_LOCATION
  10. //   TYPE refers to the type of map location this is: MAP, SHOP, etc.
  11. //    - After TYPE, leave a blank space, then the one word map location type
  12. //   GAMBLING refers to the types of gambling available at an INN location
  13. //    - The first character after GAMBLING should be a (white) space character
  14. //    - After that, list the letters referring to the types of gambling
  15. //      available: B=Blackjack, R=Russian Roulette, etc
  16. //   Start and end each description with BEGIN/END_DESCRIPTION
  17. //    - Everything between the start and end is displayed as is
  18. //    - To have ANSI gfx and color, just use standard ANSI format
  19. //    - Terminate each line with a standard C/R (\n); don't go past 80 columns
  20. //   Start and end each direction list with BEGIN/END_DIRECTION
  21. //    - The first character on each line represents the "direction" available
  22. //    - There should be a space followed by the a file-name and another space
  23. //    - The file-name should be that of another file like this one containing
  24. //        the description of the area a player is currently at
  25. //    - The file-name must be one word only, CAPS aren't a must but I use 'em
  26. //    - HHARD is a reserved file-name corresponding with hard-coded locations
  27. //        Don't use it unless you actually want to include this type
  28. //    - The rest of the line is the location corresponding with that direction
  29. //    - Spaces are allowed in the location name
  30.  
  31. NAME HLOCATE
  32. //---------------------------------------------------------------------------
  33. BEGIN_LOCATION Crystal's Emporium
  34. TYPE LOCATE
  35. MAP HBRAVO.MAP
  36. COST 750
  37.  
  38. BEGIN_DESCRIPTION
  39.    The living room of this apartment has been cleaned up and converted into
  40. a little shop.  An older lady, with long grey hair, sits at a small table
  41. playing solitaire next to a crystal ball.  The whole room is filled with
  42. strange pieces:  really old books, crystals, vases, feathers, a variety of
  43. animal feet, etc.   There's a few doors in the room, leading to other
  44. undoubtedly uninteresting places in the apartment.  The only exit from the
  45. place is to [R]eturn to the second floor hallway.
  46.    After a moment, the old lady stops playing with her cards and says,
  47. "Hello exterminator.  My name is Crystal.  Welcome to my emporium.  What can I
  48. help you with?  Would you like me to use my powers and [L]ocate someone for
  49. you or do you just need [I]nformation on someone?"  She seems quite sweet and
  50. sincere, and waits patiently the opportunity to continue [T]alking with you.
  51. END_DESCRIPTION
  52.  
  53. BEGIN_TALK_TEXT
  54.    "My results are always dead-on, exterminator," Crystal says quietly.
  55. "Pardon the expression.  I never make a mistake.  Whether you know of the
  56. place I describe or not is irrelevant.  I'm always right.  I know it's a lot
  57. of money, but I'm just getting started here again.  Besides, let's see your
  58. beloved Kitty-CAT give you the information I can give you.  I have all of this
  59. other great stuff to sell, but I haven't priced it out yet."
  60. END_TALK_TEXT
  61.  
  62. BEGIN_DIRECTIONS
  63. [R]eturn - HBRAVO Bravo Apartments, Second Floor
  64. END_DIRECTIONS
  65.  
  66. END_LOCATION Crystal's Emporium
  67.  
  68. //---------------------------------------------------------------------------
  69.